home *** CD-ROM | disk | FTP | other *** search
/ AGA Toolkit '97 / The AGA Toolkit '97.iso / programming / c / dice2.06.37 / include / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-07  |  218 b   |  18 lines

  1.  
  2. /*
  3.  *  SETJMP.H
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #ifndef SETJMP_H
  9. #define SETJMP_H
  10.  
  11. typedef long jmp_buf[16];
  12.  
  13. extern int setjmp(jmp_buf);
  14. extern void longjmp(jmp_buf, int);
  15.  
  16. #endif
  17.  
  18.